home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / objbase.h < prev    next >
C/C++ Source or Header  |  2005-10-16  |  2KB  |  87 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: objbase.h,v 1.4 2003/04/30 21:58:12 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __OBJBASE_H_INCLUDED
  25. #define __OBJBASE_H_INCLUDED
  26.  
  27. struct ol_class;
  28.  
  29. struct ol_object {
  30.     struct ol_object *next;
  31.     struct ol_class *isa;
  32.     
  33.     char alloc_method;
  34.     char marked;
  35.     char dead;
  36. };
  37.  
  38. struct ol_class
  39. {
  40.   struct ol_object super;
  41.   struct ol_class *super_class;
  42.   char *name;  /* For debugging */
  43.  
  44.   size_t size;
  45.  
  46.   void (*mark_instance)(struct ol_object *instance,
  47.                         void (*mark)(struct ol_object *o));
  48.   void (*free_instance)(struct ol_object *instance);
  49.  
  50.   /* Particular classes may add their own methods here */
  51. };
  52.  
  53. #define MARK_INSTANCE(c, i, f) ((c)->mark_instance((i), (f)))
  54. #define FREE_INSTANCE(c, i) ((c)->free_instance((i)))
  55.  
  56. #define CLASS(c) (c##_class)
  57.  
  58. #ifdef DEBUG_ALLOC
  59.  
  60. struct ol_string
  61. {
  62.   int magic;
  63.   UINT32 use_cnt;
  64.   /* NOTE: The allocated size may be larger than the string length. */
  65.   UINT32 length;
  66.   UINT8 data[1];
  67. };
  68.  
  69.  
  70. #else   /* !DEBUG_ALLOC */
  71.  
  72. struct ol_string
  73. {
  74.   UINT32 use_cnt;
  75.   /* NOTE: The allocated size may be larger than the string length. */
  76.   UINT32 length;
  77.   UINT8 data[1];
  78. };
  79.  
  80. #endif  /* !DEBUG_ALLOC */
  81.  
  82. struct ol_string *ol_string_alloc(UINT32 length);
  83. void ol_string_free(struct ol_string *s);
  84. struct ol_string *ol_string_use(struct ol_string *str);
  85.  
  86. #endif
  87.